home *** CD-ROM | disk | FTP | other *** search
/ Aminet 39 / Aminet 39 (2000)(Schatztruhe)[!][Oct 2000].iso / Aminet / mus / misc / spcli.lha / SongPlayerCLI / Rexx / SpCLI / Help.rexx < prev    next >
OS/2 REXX Batch file  |  2000-08-23  |  4KB  |  110 lines

  1. /* 
  2. SongPlayerCLI v1.52 (by Gareth Griffiths)
  3. E-Mail: gazchap@btinternet.com
  4. Help.rexx - Gives help on the commands used in SpCLI.
  5. */
  6.  
  7. ADDRESS COMMAND
  8. OPTIONS RESULTS
  9. PARSE ARG command
  10. IF command = "" THEN DO
  11.     SAY "   SongPlayerCLI by GazChap/JokerD"
  12.     SAY "   Version 1.52 (16-04-2000)"
  13.     SAY " "
  14.     SAY "   Usage: SpCLI <command>"
  15.     SAY " "
  16.     SAY "   Where <command> is:"
  17.     SAY " "
  18.     SAY "     play          -   play the current file."
  19.     SAY "     stop          -   stop the current file."
  20.     SAY " "
  21.     SAY "     add <path>    -   adds <path> to the playlist."
  22.     SAY "     first         -   switch to the first file in the playlist."
  23.     SAY "     prev          -   select the previous file in the playlist."
  24.     SAY "     next          -   select the next file in the playlist."
  25.     SAY "     last          -   switch to the last file in the playlist."
  26.     SAY "     random        -   select a random file from the playlist."
  27.     SAY "     select <id>   -   changes to file number <id>."
  28.     SAY "     find <string> -   searches through playlist for <string>."
  29.     SAY " "    
  30.     SAY "     count         -   count the number of files in the playlist."
  31.     SAY "     info          -   gives various information on the current file."
  32.     SAY "     list          -   gives ID numbers for all files in playlist."
  33.     SAY " "
  34.     SAY "     show          -   un-iconifies the SongPlayer interface."    
  35.     SAY "     hide          -   iconifies the SongPlayer interface."
  36.     SAY "     quit          -   quit's SongPlayer completely."
  37.     SAY " "  
  38.     SAY "     help <cmd>    -   display help on <cmd>."
  39.     EXIT
  40. END
  41. SAY "   SongPlayerCLI by GazChap/JokerD"
  42. SAY "   Version 1.52 (16-04-2000)"
  43. SAY " "
  44. ucom=UPPER(command)
  45. IF ucom = "PLAY" THEN DO
  46.     SAY "   · PLAY: Starts playback of the current file."
  47. END
  48. IF ucom = "STOP" THEN DO
  49.     SAY "   · STOP: Stops playback completely."
  50. END
  51. IF ucom = "ADD" THEN DO
  52.     SAY "   · ADD: Adds a file to the playlist. You can either pass"
  53.     SAY "          the filename as a parameter, e.g."
  54.     SAY " "
  55.     SAY "          SpCLI ADD MP3:SimpleMinds_BelfastChild.mp3"
  56.     SAY " "
  57.     SAY "          or you can leave it blank and you will be prompted."
  58. END
  59. IF ucom = "FIRST" THEN DO
  60. 8    SAY "   · FIRST: Moves to the first file in the playlist."
  61. END
  62. IF ucom = "PREV" THEN DO
  63.     SAY "   · PREV: Moves to the previous file in the playlist."
  64. END
  65. IF ucom = "NEXT" THEN DO
  66.     SAY "   · NEXT: Moves to the next file in the playlist."
  67. END
  68. IF ucom = "LAST" THEN DO
  69.     SAY "   · LAST: Moves to the last file in the playlist."
  70. END
  71. IF ucom = "RANDOM" THEN DO
  72.     SAY "   · RANDOM: Selects a random file in the playlist."
  73. END
  74. IF ucom = "SELECT" THEN DO
  75.     SAY "   · SELECT: Jumps to a specified file. This works using ID numbers"
  76.     SAY "             which are obtained using either the FIND or LIST commands."
  77.     SAY "             You can pass the ID as a parameter, e.g:"
  78.     SAY " "    
  79.     SAY "             SpCLI SELECT 24"
  80.     SAY "    "
  81.     SAY "             or you can leave it blank and you will be prompted."
  82. END
  83. IF ucom = "FIND" THEN DO
  84.     SAY "   · FIND: Searches through the ID3 Title tags for a specified string."
  85.     SAY "           You can either pass the search string as a parameter, e.g.:"
  86.     SAY " "
  87.     SAY '           SpCLI FIND "Sunshine"'
  88.     SAY " "
  89.     SAY "           Or you can leave it blank and you will be prompted. The"
  90.     SAY "           quotes above are important! Do not forget them!"
  91. END
  92. IF ucom = "COUNT" THEN DO
  93.     SAY "   · COUNT: Counts the number of files in the playlist."
  94. END
  95. IF ucom = "INFO" THEN DO
  96.     SAY "   · INFO: Gives information on the current file."
  97. END
  98. IF ucom = "LIST" THEN DO
  99.     SAY "   · LIST: Lists the files in the playlist. Useful for gaining ID's."
  100. END
  101. IF ucom = "SHOW" THEN DO
  102.     SAY "   · SHOW: Un-iconifies the SongPlayer GUI."
  103. END
  104. IF ucom = "HIDE" THEN DO
  105.     SAY "   · HIDE: Iconifies the SongPlayer GUI."
  106. END
  107. IF ucom = "QUIT" THEN DO
  108.     SAY "   · QUIT: Quits the SongPlayer program completely."
  109. END
  110. EXIT